A fast Node.js package manager that drops into existing projects.
aube means dawn in French. Pronounced /ob/, like "ohb".
Fast installs. Warm CI is about 7x faster than pnpm and 3x faster than Bun in the current benchmarks. Across the fixture set, aube runs up to ~22x faster than pnpm and up to 3x faster than Bun.
Existing lockfiles. Reads and writes pnpm-lock.yaml, package-lock.json, npm-shrinkwrap.json, yarn.lock, and bun.lock in place.
Cheap repeat commands. aube run test, aube test, and aube exec vitest auto-install when dependencies are stale, then skip that work when nothing changed.
Less disk use. A global content-addressable store lets projects share package files instead of keeping a full copy of the same dependencies in every checkout.
Secure defaults. aube defaults to safer installs: new releases wait out a minimum age, exotic transitive dependencies are blocked, and dependency lifecycle scripts require approval.
The recommended path is mise:
mise use -g aubeCheck that it is on your PATH:
aube --versionInside a project, you can also pin aube with mise:
mise use aubeaube is also published on npm:
npm install -g @endevco/aubeHomebrew installs come from the Endev tap:
brew install endevco/tap/aubeRun aube in an existing Node.js project:
aube installIf the project already has a supported lockfile, aube reads it and writes updates back to the same file. That makes it easy to try aube locally without forcing the rest of the team to switch package managers first.
For a new project with no lockfile, aube creates aube-lock.yaml.
aube install # install dependencies
aube add react # add a dependency
aube add -D vitest # add a dev dependency
aube remove react # remove a dependency
aube update # update dependencies within package.json ranges
aube run build # run a package.json script
aube test # run the test script, auto-installing first if needed
aube exec vitest # run a local binary
aube dlx cowsay hi # run a package in a throwaway environment
aube ci # clean, frozen install for CIYou can also run scripts directly:
aube dev
aube build
aube lintIf the script exists in package.json, aube treats that as aube run <script>.
aubr and aubx are multicall shims for aube run and aube dlx. They
share a binary with aube and dispatch purely on argv[0], so every flag
that works on the full command also works on the shim:
aubr build # aube run build
aubx cowsay hi # aube dlx cowsay hiThe release archives ship all three binaries side by side; no extra setup is needed when you install aube via mise or the tarball.
Use aube ci when the lockfile must be treated as the source of truth:
aube ciIt removes node_modules, verifies the lockfile is fresh for the current package.json, then installs.
For Docker layers or workflows where you only want to update the lockfile:
aube install --lockfile-onlyFor production-only installs:
aube install --prodaube supports workspace projects and the workspace: protocol.
aube install -r
aube run test -r
aube add zod --filter @acme/apiIf a project already uses pnpm-workspace.yaml, aube can read and write it. New aube-first workspaces can use aube-workspace.yaml.
| File | Reads | Writes in place |
|---|---|---|
aube-lock.yaml |
yes | yes |
pnpm-lock.yaml v9 |
yes | yes |
package-lock.json v2/v3 |
yes | yes |
npm-shrinkwrap.json |
yes | yes |
yarn.lock (v1 classic + v2+ berry) |
yes | yes |
bun.lock |
yes | yes |
aube is not compatible with every historical lockfile shape. Older pnpm v5/v6 lockfiles should be upgraded with pnpm before switching. Yarn PnP projects need to move to a node_modules linker first — aube writes node_modules, not .pnp.cjs.
When more than one lockfile exists, prefer keeping one canonical lockfile for the project so teammates and CI do not fight over dependency state.
aube skips dependency lifecycle scripts by default. That protects installs from unexpected build steps in transitive packages.
To allow packages that need build scripts:
aube approve-buildsYou can inspect packages whose scripts were skipped:
aube ignored-buildsaube uses an isolated node_modules layout. Packages are linked through node_modules/.aube/, and package files are stored once in $XDG_DATA_HOME/aube/store/ (defaulting to ~/.local/share/aube/store/).
That means:
- several projects with similar dependencies share package files and use less disk space;
- dependencies stay isolated, so phantom dependencies are harder to rely on accidentally;
- repeated installs can reuse package files already on disk.
aube supports the common package-manager surface:
aube list
aube why react
aube outdated
aube audit
aube pack
aube publish
aube link
aube unlink
aube config get registry
aube store path
aube store pruneSome pnpm commands are intentionally out of scope. Runtime-management commands such as env, runtime, setup, and self-update belong in tools like mise. Registry account helpers such as whoami, token, owner, search, pkg, and set-script are compatibility stubs that point you to the npm command instead.
Thanks to Buildkite for providing CI for aube.
Built by en.dev.
MIT